home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / misc_src / knowhow4 / image_p.h < prev    next >
C/C++ Source or Header  |  1995-11-01  |  187b  |  12 lines

  1. #ifndef __IMAGE_TYPE_H_
  2. #define __IMAGE_TYPE_H_
  3.  
  4. struct imageType
  5.     {
  6.     int xmax, ymax;
  7.     unsigned char data[];
  8.     };
  9.  
  10. typedef imageType* imageP;
  11.  
  12. #endif __IMAGE_TYPE_H_